home *** CD-ROM | disk | FTP | other *** search
- diff -u -r --new-file --exclude=CVS samba-1.9.16alpha11/source/cvs.log samba-1.9.16alpha12/source/cvs.log
- --- samba-1.9.16alpha11/source/cvs.log Thu Jul 18 20:54:26 1996
- +++ samba-1.9.16alpha12/source/cvs.log Fri Jul 19 19:35:13 1996
- @@ -2393,3 +2393,36 @@
- Log Message:
- preparing for release of 1.9.16alpha11
-
- +
- +****************************************
- +Date: Friday July 19, 1996 @ 3:09
- +Author: samba-bugs
- +
- +Update of /data/cvs/samba/source
- +In directory arvidsjaur:/var/tmp/cvs-serv17698
- +
- +Modified Files:
- + includes.h namedbname.c
- +Log Message:
- +
- +NeXT needs #define pid_t int in includes.h
- +
- +namedbname.c:find_name_search() needed search capability on both local
- +subnet records and WINS records. it used to return NULL if the name
- +was not found in the local subnet records even if you asked it to search
- +the WINS name records as well.
- +
- +
- +
- +****************************************
- +Date: Friday July 19, 1996 @ 19:34
- +Author: samba-bu
- +
- +Update of /data/cvs/samba/source
- +In directory arvidsjaur:/samba/samba-bugs/samba/source
- +
- +Modified Files:
- + version.h
- +Log Message:
- +preparing for release of 1.9.16alpha12
- +
- diff -u -r --new-file --exclude=CVS samba-1.9.16alpha11/source/includes.h samba-1.9.16alpha12/source/includes.h
- --- samba-1.9.16alpha11/source/includes.h Thu Jul 18 20:53:15 1996
- +++ samba-1.9.16alpha12/source/includes.h Fri Jul 19 19:28:14 1996
- @@ -584,6 +584,7 @@
- #define mode_t int
- #define GID_TYPE int
- #define gid_t int
- +#define pid_t int
- #define SIGNAL_CAST (void (*)(int))
- #define WAIT3_CAST1 (union wait *)
- #define HAVE_GMTOFF
- diff -u -r --new-file --exclude=CVS samba-1.9.16alpha11/source/namedbname.c samba-1.9.16alpha12/source/namedbname.c
- --- samba-1.9.16alpha11/source/namedbname.c Thu Jul 18 20:53:15 1996
- +++ samba-1.9.16alpha12/source/namedbname.c Fri Jul 19 19:28:14 1996
- @@ -156,24 +156,17 @@
- {
- if (*d != NULL)
- {
- + struct name_record *n = find_name((*d)->namelist, name, search);
- DEBUG(4,("find_name on local: %s %s search %x\n",
- namestr(name),inet_ntoa(ip), search));
- - return find_name((*d)->namelist, name, search);
- - }
- - else
- - {
- - DEBUG(4,("local find_name_search with a NULL subnet pointer\n"));
- - return NULL;
- + if (n) return n;
- }
- }
-
- if ((search & FIND_WINS) != FIND_WINS) return NULL;
-
- - if (*d == NULL)
- - {
- - /* find WINS subnet record */
- - *d = find_subnet(ipgrp);
- - }
- + /* find WINS subnet record. */
- + *d = find_subnet(ipgrp);
-
- if (*d == NULL) return NULL;
-
- @@ -222,7 +215,7 @@
- anything other than as a hexadecimal number :-) */
-
- sprintf(data, "%s#%02x %s %2x %ld",
- - n->name.name,n->name.name_type, /* XXXX ignore the scope for now */
- + n->name.name,n->name.name_type, /* XXXX ignore scope for now */
- inet_ntoa(n->ip),
- n->nb_flags,
- n->death_time);
- diff -u -r --new-file --exclude=CVS samba-1.9.16alpha11/source/version.h samba-1.9.16alpha12/source/version.h
- --- samba-1.9.16alpha11/source/version.h Thu Jul 18 20:53:51 1996
- +++ samba-1.9.16alpha12/source/version.h Fri Jul 19 19:34:27 1996
- @@ -1 +1 @@
- -#define VERSION "1.9.16alpha11"
- +#define VERSION "1.9.16alpha12"
-